home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 004 / _adhesive / examples / obj2 / c / main
Encoding:
Text File  |  1994-07-31  |  160 b   |  9 lines

  1. #include <string.h>
  2.  
  3. void stringReverse(char *string, unsigned int length);
  4.  
  5. void stringSimpleReverse(char *string)
  6. {
  7.   stringReverse(string,strlen(string));
  8. }
  9.